home *** CD-ROM | disk | FTP | other *** search
/ Programming Microsoft Visual Basic .NET / Programming Microsoft Visual Basic .NET (Microsoft Press)(X08-78517)(2002).bin / setup / vbnet / 23 web forms and controls / firstwebforms / webcontrolsform.aspx.vb < prev    next >
Encoding:
Text File  |  2002-03-17  |  1.6 KB  |  36 lines

  1. Public Class WebControlsForm
  2.     Inherits System.Web.UI.Page
  3.     Protected WithEvents Table1 As System.Web.UI.WebControls.Table
  4.     Protected WithEvents Literal1 As System.Web.UI.WebControls.Literal
  5.     Protected WithEvents Label1 As System.Web.UI.WebControls.Label
  6.     Protected WithEvents Panel1 As System.Web.UI.WebControls.Panel
  7.     Protected WithEvents PlaceHolder1 As System.Web.UI.WebControls.PlaceHolder
  8.     Protected WithEvents TextBox1 As System.Web.UI.WebControls.TextBox
  9.     Protected WithEvents TextBox2 As System.Web.UI.WebControls.TextBox
  10.     Protected WithEvents CheckBox1 As System.Web.UI.WebControls.CheckBox
  11.     Protected WithEvents RadioButton1 As System.Web.UI.WebControls.RadioButton
  12.     Protected WithEvents Image1 As System.Web.UI.WebControls.Image
  13.     Protected WithEvents Button1 As System.Web.UI.WebControls.Button
  14.     Protected WithEvents LinkButton1 As System.Web.UI.WebControls.LinkButton
  15.     Protected WithEvents ImageButton1 As System.Web.UI.WebControls.ImageButton
  16.     Protected WithEvents HyperLink1 As System.Web.UI.WebControls.HyperLink
  17.  
  18. #Region " Web Form Designer Generated Code "
  19.  
  20.     'This call is required by the Web Form Designer.
  21.     <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
  22.  
  23.     End Sub
  24.  
  25.     Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init
  26.         'CODEGEN: This method call is required by the Web Form Designer
  27.         'Do not modify it using the code editor.
  28.         InitializeComponent()
  29.     End Sub
  30.  
  31. #End Region
  32.  
  33.     ' no code for this form
  34.  
  35. End Class
  36.